home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / Splat / splat.dpr < prev    next >
Encoding:
Text File  |  2000-02-25  |  434 b   |  23 lines

  1. program Splat;
  2.  
  3. {$R 'ShapeRes.res' 'ShapeRes.rc'}
  4. {$R 'SoundRes.res' 'SoundRes.rc'}
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'Main.pas' {MainForm},
  9.   KeyText in 'KeyText.pas',
  10.   MetaFile in 'MetaFile.pas',
  11.   Shapes in 'Shapes.pas',
  12.   Types in 'Types.pas',
  13.   ZWave in 'ZWave.pas';
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.Initialize;
  19.   Application.Title := 'Splat';
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   Application.Run;
  22. end.
  23.